@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Inter-400.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/Inter-500.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/Inter-600.ttf") format("truetype");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Inter-700.ttf") format("truetype");
}

@font-face {
    font-family: "Lora";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/Lora-400.ttf") format("truetype");
}

@font-face {
    font-family: "Lora";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/Lora-600.ttf") format("truetype");
}

@font-face {
    font-family: "Lora";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/Lora-700.ttf") format("truetype");
}

:root {
    --venue-text-color: #141145;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 17px;
    min-height: 100vh;
    background: #fbf8f6;
}

.main {
    display: flex;
    justify-content: center;
    padding-right: 2em;
}

.left {
    display: flex;
    justify-content: left;
    text-align: left;
    max-width: 38em;
    padding-right: 4em;
    padding-left: 4em;
}

.name {
    display: flex;
    justify-content: center;
    white-space: nowrap;
    margin-top: 1ex;
    margin-bottom: 1ex;
    margin-right: 0.5ex;
    text-align: center;
    font-family: "Lora", Georgia, serif;
}

.left.bio {
    padding-bottom: 1px;
    font-size: 1.1em;
}

.portrait {
    border-radius: 50%;
    width: 200px;
    margin: auto;
    top: 1cm;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    min-width: 100px;
}

.paper {
    margin-left: 2.5em;
    margin-bottom: 2.1ex;
    display: flex;
    justify-content: left;
    vertical-align: top;

    div {
        margin: 0pt;
        padding: 0pt;
        line-height: 18pt;
    }

    .pub {
        min-height: 2pt;
        max-width: 50em;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.45em;

        .venue {
            font-style: italic;
            font-weight: 450;
            font-size: 1.02em;
            color: var(--venue-text-color);
        }

        .venue-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.08em 0.58em 0.12em;
            border: 1px solid #e4c276;
            border-radius: 999px;
            background: #fff7e5;
            color: #8a5a00;
            font-size: 0.9em;
            font-style: normal;
            font-weight: 700;
            letter-spacing: 0.01em;
            line-height: 1.45;
        }

        .award {
            font-weight: bold;
            font-style: normal;
            color: #c40000;
        }

        .award:before {
            content: "\2605";
            padding-right: 2pt;
            padding-left: 3pt;
            font-weight: bold;
            vertical-align: 0.8pt;
            position: relative;
        }
    }

    .title {
        font-family: "Lora", Georgia, serif;
        font-size: 1.06rem;
        font-weight: 700;
        max-width: none;
        margin-bottom: 0.55ex;
        padding-right: 0;
        text-wrap: normal;
        overflow-wrap: normal;
    }

    .title a {
        color: inherit;
        text-decoration: none;
    }

    .title a:hover {
        color: #1d5fbf;
        text-decoration: underline;
        text-decoration-thickness: 1px;
        text-underline-offset: 2px;
    }

    .info {
        flex: 1 1 0;
        min-width: 0;
        max-width: 100%;
        padding: 0;
        margin-top: 0;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .authors {
        max-width: 50em;
        margin-bottom: 0.2rem;
        text-wrap: balance;
    }

    .summary {
        max-width: none;
        margin-top: 1.05ex;
        font-size: 0.95em;
        color: #424242;
        line-height: 20px;
        text-wrap: normal;
    }

    .year {
        display: none;
        width: 2em;
        margin-left: auto;
    }
}

tr[class^="yr-"] .paper {
    max-width: 67em;
    padding: 0.6em 1.15em;
    border: 1px solid #deded4;
    border-radius: 8px;
    background: #ffffff;
    align-items: flex-start;
}

.links {
    white-space: nowrap;
    position: relative;
}

.links a {
    color: #1d5fbf;
}

.header {
    padding-bottom: 2.4ex;
}

.header th {
    text-align: left;
    font-weight: inherit;
    vertical-align: middle;
}

.header th:first-child {
    width: 42em;
    padding-left: 2.5em;
}

.header th:last-child {
    width: 220px;
    padding-right: 4em;
}

.header .name {
    justify-content: flex-start;
    text-align: left;
    margin-right: 0;
}

.header .left {
    padding-left: 0;
    padding-right: 0;
    max-width: none;
}

.header .portrait {
    position: static;
    width: 220px;
    margin: 0;
    transform: translate(3.15em, 0.8em);
}

.options,
.links {
    display: flex;
    justify-content: left;
    align-items: center;
    padding-top: 1ex;
    flex-wrap: wrap;
    gap: 0.45em;
}

.paper .options {
    margin-top: 0.32rem;
}

.links .icon,
.options .icon {
    margin-right: 1pt;
    margin-left: 2pt;
}

.options > span {
    padding-right: 0.45em;
    padding-top: 2pt;
    padding-bottom: 2pt;
    white-space: nowrap;
}

.options * {
    padding-top: 2pt;
}

table {
    border-collapse: collapse;
}

a {
    color: #263c75;
    text-decoration: none;
}

a:hover {
    color: #c4820f;
}

.accent-link,
.links a,
.options a,
.options .status-banner {
    color: #1d5fbf;
}

.links a,
.options a,
.options .status-banner {
    display: inline-flex;
    align-items: center;
    gap: 2pt;
    padding: 0.18em 0.55em 0.22em;
    border: 1px solid #d6e5fb;
    border-radius: 5px;
    background: #f3f8ff;
    font-weight: 500;
    line-height: 1.3;
}

.options .status-banner {
    box-sizing: border-box;
    justify-content: center;
    width: 16.8em;
    cursor: default;
}

.links a:hover,
.options a:hover {
    color: #c4820f;
    border-color: #efcf95;
    background: #fff8ed;
}

.authors a {
    color: inherit;
    text-decoration: none;
}

.authors a:hover {
    color: #1d5fbf;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.name {
    font-family: "Lora", Georgia, serif;
    font-size: 40px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 20px;
    color: #111;
}

h3 {
    font-family: "Lora", Georgia, serif;
    font-size: 24px;
    font-style: normal;
    font-variant: normal;
    font-weight: 600;
    line-height: 26.399999618530273px;
    color: #111;
}

p,
.paper div {
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 20px;
    color: #333;
}

a:active,
a:hover {
    outline: 0;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    font-size: 30px;
    text-decoration: none;
    z-index: 200;
}

.close:hover {
    color: #fe0606;
    text-decoration: none;
}

.me {
    font-weight: bold;
}

.notice {
    margin-left: 4em;
    padding-left: 3em;
    padding-bottom: 1cm;
    padding-top: 2.5ex;
    margin-top: -1ex;
    display: block;
}

.equal-notice,
.equaladv-notice {
    font-size: 11pt;
    padding-right: 2em;
    color: #666;
    display: inline-block;
}

.equal-notice:before {
    content: "*";
    width: 5pt;
    text-align: left;
}

.equaladv-notice:before {
    content: "\2020";
    display: inline-block;
    font-size: 80%;
    vertical-align: 3pt;
    width: 4pt;
    text-align: left;
}

.thumbnail {
    align-items: center;
    justify-content: flex-start;
    display: flex;
    align-self: center;
    flex: 0 0 15em;
    width: 15em;
    padding-left: 0;
    padding-right: 2.25em;
    box-sizing: border-box;
}

.thumbnail > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12.75em;
    height: 8.4em;
}

.thumbnail.thumbnail-large {
    padding-right: 1em;
}

.thumbnail.thumbnail-large > a {
    width: 14em;
    height: 8.6em;
}

.thumbnail .small {
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    padding-right: 0;
    padding-bottom: 0;
    cursor: zoom-in;
    object-fit: contain;
    margin-top: auto;
    margin-bottom: auto;
}

.thumbnail .small.sched {
    object-fit: cover;
    object-position: center;
}

.thumbnail > a.sddl-thumb-frame {
    overflow: hidden;
    height: 9.2em;
}

.thumbnail .small.sddl {
    transform: scale(1.10);
    transform-origin: center top;
}

.placeholder-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px dashed #9fb2c7;
    border-radius: 4px;
    background: #f5f8fb;
    color: #6f7f90;
    font-size: 0.72em;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
}

.paper .year {
    display: none !important;
}

.zoomed {
    display: none;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: rgba(200, 200, 200, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
    margin: auto;
    z-index: 90;
}

.zoomed img {
    position: relative;
    align-items: center;
    width: 40em;
    height: 40em;
    object-fit: contain;
    cursor: zoom-out;
    z-index: 100;
    margin: auto auto;
    background: white;
    padding: 2em;
}

.popup {
    position: fixed;
    inset: 0;
    background: rgba(200, 200, 200, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}

.popup .content {
    position: relative;
    background: lightgray;
    padding: 1em 1em;
    border-radius: 4px;
    width: 70em;
    user-select: all;
}

.popup .content pre {
    white-space: pre-wrap;
    padding: 1em 2em;
    background: none;
}

.zoomed:target,
.popup:target {
    display: flex;
}

code[class*="language-"] ::selection,
code[class*="language-"]::selection,
pre[class*="language-"] ::selection,
pre[class*="language-"]::selection {
    background-color: #c2bfd0;
}

@media only screen and (max-width: 760px) {
    .main {
        padding-right: 0;
    }

    .header {
        display: block;
    }

    .header th,
    .header th:first-child,
    .header th:last-child {
        display: block;
        width: auto;
        padding-left: 1.25em;
        padding-right: 1.25em;
    }

    .header .portrait {
        width: 170px;
        margin-left: 1.25em;
        transform: none;
    }

    .paper {
        margin-left: 1.25em;
        margin-right: 1.25em;
        flex-wrap: wrap;
    }

    .thumbnail .small {
        width: 100%;
        max-width: 14em;
        height: auto;
        padding-right: 0;
    }

    .thumbnail,
    .thumbnail > a {
        width: 100%;
        max-width: 14em;
        height: auto;
        flex-basis: auto;
        padding-right: 0;
    }

    .thumbnail > a.sddl-thumb-frame {
        height: auto;
    }

    .thumbnail {
        flex: 0 0 100%;
        max-width: none;
        margin-bottom: 0.9em;
    }

    .paper .info {
        flex-basis: 100%;
    }
}

.publications + tr.yr-2026 .paper {
  border-top: 1px solid #ccc;
  padding-top: 3ex;
  margin-top: -2.5ex;
}

table tbody tr[class^="yr-"] > td > .paper {
  padding: 0.65em 1.15em !important;
  border: 1px solid #deded4 !important;
  background: #ffffff;
  align-items: flex-start;
  box-sizing: border-box;
}

table tbody tr[class^="yr-"] > td > .paper .title {
  margin-top: 0;
}
